home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / Example2.iss < prev    next >
Text File  |  2006-10-03  |  850b  |  25 lines

  1. ; -- Example2.iss --
  2. ; Same as Example1.iss, but creates its icon in the Programs folder of the
  3. ; Start Menu instead of in a subfolder, and also creates a desktop icon.
  4.  
  5. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  6.  
  7. [Setup]
  8. AppName=My Program
  9. AppVerName=My Program version 1.5
  10. DefaultDirName={pf}\My Program
  11. DisableProgramGroupPage=yes
  12. ; ^ since no icons will be created in "{group}", we don't need the wizard
  13. ;   to ask for a group name.
  14. UninstallDisplayIcon={app}\MyProg.exe
  15. OutputDir=userdocs:Inno Setup Examples Output
  16.  
  17. [Files]
  18. Source: "MyProg.exe"; DestDir: "{app}"
  19. Source: "MyProg.chm"; DestDir: "{app}"
  20. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  21.  
  22. [Icons]
  23. Name: "{commonprograms}\My Program"; Filename: "{app}\MyProg.exe"
  24. Name: "{userdesktop}\My Program"; Filename: "{app}\MyProg.exe"
  25.